/* Main page background image */
body {
  background-image: url('../Images/background.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center center;
}

/* Hero Section Styles */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  overflow: hidden;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.video-container:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.4) 60%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  max-width: 800px;
  padding: var(--space-4);
  z-index: 1;
  animation: fadeInUp 1.2s ease-out;
}

.hero-content h1 {
  margin-bottom: var(--space-4);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-8);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-content .cta-button {
  font-size: var(--font-size-lg);
  padding: var(--space-3) var(--space-8);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero {
    min-height: 500px;
    height: 80vh;
    padding: var(--space-4);
  }
  
  .hero-content {
    max-width: 100%;
    padding: var(--space-3);
  }
  
  .hero-content h1 {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--space-3);
  }
  
  .hero-content p {
    font-size: var(--font-size-base);
    margin-bottom: var(--space-6);
  }
  
  .hero-content .cta-button {
    font-size: var(--font-size-base);
    padding: var(--space-2) var(--space-6);
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 400px;
    height: 70vh;
    padding: var(--space-2);
  }
  
  .hero-content {
    padding: var(--space-2);
  }
  
  .hero-content h1 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-2);
  }
  
  .hero-content p {
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-4);
  }
  
  .hero-content .cta-button {
    font-size: var(--font-size-sm);
    padding: var(--space-2) var(--space-5);
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 360px) {
  .hero {
    min-height: 350px;
    height: 60vh;
  }
  
  .hero-content h1 {
    font-size: var(--font-size-lg);
  }
  
  .hero-content p {
    font-size: var(--font-size-xs);
  }
}

/* Hero Section ends here */

/* First section starts from here */

.layout-section {
  display: flex;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
}

.left-image {
  flex: 1;
  background: url('/Images/A5.png') no-repeat center center;
  background-size: cover;
  min-height: 670px;
  
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);

}

.right-content {
  flex: 1;
  padding: 50px;
  background-color: #E0F9B5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  

}

.content-block {
  display: flex;
  align-items: flex-start;
  gap: 20px;

}

.icon-img {
  width: 60px;
  height: 60px;
  object-fit: contain;


}

.text h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #000000;
}

.text p {
  font-size: 15px;
  margin-bottom: 5px;
  color: #000000;
}

.text a {
  color: #DE5B7B;
  font-size: 15px;
  text-decoration: none;
}

.text a:hover {
  text-decoration: underline;
  
}

.orange {
  color: #E0F9B5;
  font-size: 13px;
  text-decoration: none;
}

@media screen and (max-width: 1024px) {
  .layout-section {
    flex-direction: column;
    /* padding: 30px 20px; */
  }

  .left-image {
    width: 100%;
    min-height: 600px;
    background-position: top center;
  }

  .right-content {
    width: 100%;
    padding: 30px 20px;
    gap: 30px;
  }

  .content-block {
    flex-direction: row;
    align-items: flex-start;
  }

  .icon-img {
    width: 50px;
    height: 50px;
  }

  .text h3 {
    font-size: 16px;
  }

  .text p {
    font-size: 13px;
  }

  .text a {
    font-size: 12px;
  }
}

@media screen and (max-width: 600px) {
  .content-block {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .icon-img {
    width: 40px;
    height: 40px;
  }

  .text {
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .text h3 {
    font-size: 15px;
  }

  .text p {
    font-size: 12px;
  }

  .text a {
    font-size: 12px;
  }
}


/* First section ends here */

/* 2nd section starts from here */

    .stats-section {
      background: url('/Images/A6.png') no-repeat center center/cover;
      background-color: #DE5B7B;
      background-blend-mode: multiply;
      text-align: center;
      color: #fff;
      padding: 100px 20px 200px;
    }

    .stats-section h2 {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 20px;
      color: #fff;

    }

    .stats-box {
      max-width: 1100px;
      background-color: #fff;
      color: #000;
      margin: -100px auto 0;
      padding: 40px 20px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
      border-radius: 10px;
    }

    .stat-item {
      flex: 1 1 200px;
      margin: 20px;
      text-align: center;
      padding: 20px;
      /* border-radius: 8px; */
      background-color: #E0F9B5;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }

    .stat-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0);
      background-color: #DE5B7B;
      color: #fff;
    }

    .stat-item h3 {
      font-size: 2rem;
      margin-bottom: 10px;
    }

    .stat-item hr {
      width: 60px;
      height: 2px;
      background-color: #DE5B7B;
      border: none;
      margin: 5px auto;
    }
    

    .stat-item p {
      font-weight: 600;
      font-size: 15px;
      color: #000000;
    }

    @media screen and (max-width: 768px) {
      .stats-box {
        flex-direction: column;
        padding: 30px 10px;
      }
    }

/* 2nd section ends here */

/* 1st section starts from here */

 .First-section {
     font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      padding: 60px 20px;
      max-width: 1200px;
      margin: auto;
    }

    .text-content {
      flex: 1;
      min-width: 300px;
      max-width: 500px;
      padding: 20px;
    }

    .text-content h2 {
      font-size: 1.5rem;
      font-weight: 700;
      color: #000000;
      margin-bottom: 20px;
    }

    .text-content p {
      font-size: 15px;
      line-height: 1.6;
      color: #000000;
      margin-bottom: 30px;
      justify-content: center;
      
    }

    .image-content {
      flex: 1;
      min-width: 300px;
      max-width: 500px;
      padding: 20px;
    }

    .image-content img {
      width: 100%;
      border-radius: 20px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    @media screen and (max-width: 768px) {
      .First-section {
        flex-direction: column;
        text-align: center;
      }
    }

    /* Button 86 styling */
    .button-86 {
      all: unset;
      width: 120px;
      height: 40px;
      font-size: 16px;
      background: transparent;
      border: none;
      position: relative;
      color: #000000;
      cursor: pointer;
      z-index: 1;
      padding: 10px 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      white-space: nowrap;
      user-select: none;
      -webkit-user-select: none;
      touch-action: manipulation;
    }

    .button-86::after,
    .button-86::before {
      content: '';
      position: absolute;
      bottom: 0;
      right: 0;
      z-index: -99999;
      transition: all .4s;
    }

    .button-86::before {
      transform: translate(0%, 0%);
      width: 100%;
      height: 100%;
      border: 2px solid #DE5B7B;
      border-radius: 10px;
    }

    .button-86::after {
      transform: translate(10px, 10px);
      width: 35px;
      height: 35px;
       background: #de5b7c56;
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(5px);
      border-radius: 50px;
    }

    .button-86:hover::before {
      transform: translate(5%, 20%);
      width: 110%;
      height: 110%;
    }

    .button-86:hover::after {
      border-radius: 10px;
      transform: translate(0, 0);
      width: 100%;
      height: 100%;
    }

    .button-86:active::after {
      transition: 0s;
      transform: translate(0, 5%);
    }
    
/* 1st section ends here */

/* 2nd section starts from here */

.quality-section {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
      background-color: #DE5B7B;
      color: white;
      padding: 80px 20px;
     clip-path: polygon(0 0, 100% 0, 100% 80%, 80% 90%, 60% 85%, 40% 95%, 20% 90%, 0 100%);

    }

    .quality-container {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 50px;
      max-width: 1200px;
      margin: auto;
      flex-wrap: wrap;
      margin-top: 50px;
      margin-bottom: 50px;
    }

    .quality-image img {
      width: 100%;
        max-width: 450px;
      border-radius: 25px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }

    .quality-text {
      max-width: 500px;
    }

    .quality-text h2 {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .quality-text p {
      font-size: 15px;
      line-height: 1.6;
      margin-bottom: 30px;
      color: #ffffff;
    }

    .button-861 {
      all: unset;
      width: 120px;
      height: 40px;
      font-size: 16px;
      background: transparent;
      border: none;
      position: relative;
      color: #000000;
      cursor: pointer;
      z-index: 1;
      padding: 10px 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      white-space: nowrap;
      user-select: none;
      -webkit-user-select: none;
      touch-action: manipulation;
    }

    .button-861::after,
    .button-861::before {
      content: '';
      position: absolute;
      bottom: 0;
      right: 0;
      z-index: -99999;
      transition: all .4s;
      
    }

    .button-861::before {
      transform: translate(0%, 0%);
      width: 100%;
      height: 100%;
      background: #E0F9B5;
      border-radius: 10px;
     
    }

    .button-861::after {
      transform: translate(10px, 10px);
      width: 35px;
      height: 35px;
      background: #de5b7c56;
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(5px);
      border-radius: 50px;
     
    }

    .button-861:hover::before {
      transform: translate(5%, 20%);
      width: 110%;
      height: 110%;
    }

    .button-861:hover::after {
      border-radius: 10px;
      transform: translate(0, 0);
      width: 100%;
      height: 100%;
    }

    .button-861:active::after {
      transition: 0s;
      transform: translate(0, 5%);
    }

    @media (max-width: 768px) {
      .quality-container {
        flex-direction: column;
        text-align: center;
      }

      .quality-text h2 {
        font-size: 1.8rem;
      }
    }
/* 2nd section ends here */

/* 3rd section starts from here */


    .Second-section {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      padding: 60px 20px;
      max-width: 1200px;
      margin: auto;
      flex-direction: row; /* Image on left, content on right */
    }

    .image-content2 {
      flex: 1;
      min-width: 300px;
      max-width: 500px;
      padding: 20px;
      order: 1; /* Ensure image is left */
    }

    .image-content2 img {
      width: 100%;
      border-radius: 20px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .text-content2 {
      flex: 1;
      min-width: 300px;
      max-width: 500px;
      padding: 20px;
      order: 2; /* Ensure text is right */
    }

    .text-content2 h2 {
     font-size: 1.5rem;
      font-weight: 700;
      color: #000000;
      margin-bottom: 20px;
    }

    .text-content2 p {
      font-size: 15px;
      line-height: 1.6;
      color: #000000;
      margin-bottom: 30px;
    }

    @media screen and (max-width: 768px) {
      .Second-section {
        flex-direction: column;
        text-align: center;
      }

      .image-content2,
      .text-content2 {
        order: unset; /* Stack normally on mobile */
      }
    }

    

/* 3rd section ends here */

/* 4th section starts from here */

.Third-section {
      display: flex;
      flex-direction: row; /* Ensures left-to-right layout */
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      padding: 60px 20px;
      max-width: 1200px;
      margin: auto;
    }

    .text-content1 {
      flex: 1;
      min-width: 300px;
      max-width: 500px;
      padding: 20px;
      order: 1; /* Left side */
    }

    .text-content1 h2 {
      font-size: 1.5rem;
      font-weight: 700;
      color: #000000;
      margin-bottom: 20px;
    }

    .text-content1 p {
      font-size: 15px;
      line-height: 1.6;
      color: #000000;
      margin-bottom: 30px;
    }

    .image-content1 {
      flex: 1;
      min-width: 300px;
      max-width: 500px;
      padding: 20px;
      order: 2; /* Right side */
    }

    .image-content1 img {
      width: 100%;
      border-radius: 20px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    @media screen and (max-width: 768px) {
      .Third-section {
        flex-direction: column;
        text-align: center;
      }

      .text-content1, .image-content1 {
        order: unset; /* Reset order on small screens */
      }
    }

/* 4th section ends here  */

/* Solution and Bookings Section starts from here */

.grab-solutions-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 10px;
}

.solutions-card {
    background: linear-gradient(rgba(0, 0, 0, 0.109), rgba(0, 0, 0, 0.4)),
              url('../Images/Main\ Redirection1.jpg') center/cover no-repeat;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    max-width: 1200px; /* Expanded */
    width: 100%;
    position: relative;
    overflow: hidden;
}

.solutions-grid, .bookings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 32px;
    max-width: 100%;
    margin: 0 auto;
    
}

.section-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.section-title {
    font-size: 25px;
    font-weight: 600;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.header-icon img {
    width: 24px;
    height: 24px;
}

.solution-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 12px;
}

.solution-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.solution-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-icon img {
    width: 60px;
    height: 60px;
}

.solution-label {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

@media (max-width: 768px) {
    .solutions-grid,
    .bookings-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .solution-icon {
        width: 60px;
        height: 60px;
    }

    .solution-icon img {
        width: 35px;
        height: 35px;
    }
}

/* Solution and Bookings Section ends here */


/* Testmonial Section starts from here*/

.outerdiv
{
	width: 100%;
    min-height: 100vh;
    /* background: #E0F9B5; */
    display: flex;
    align-items: center;
    justify-content: center;
    
}
.innerdiv
{
	transform: scale(0.9);
	margin: 1rem;
	display: grid;
	grid-gap: 1.5rem;
	grid-template-rows: repeat(2,22rem);
	grid-template-columns: repeat(4,17rem);
}
.eachdiv
{
	padding: 1rem 2rem;
    border-radius: 0.8rem;
    box-shadow: 5px 5px 20px #6d6b6b6b;
    color: white;
}
.div1
{
	background: #DE5B7B;
    grid-column: 1/3;
    grid-row: 1/2;
    background-image: url(https://raw.githubusercontent.com/RahulSahOfficial/testimonials_grid_section/5532c958b7d3c9b910a216b198fdd21c73112d84/images/bg-pattern-quotation.svg);
    background-repeat: no-repeat;
    background-position-x: 25rem;
}
.div2
{
	background:#49556B;
    grid-column: 3/4;
    grid-row: 1/2;
}
.div3
{
	background: white;
    grid-column: 4/5;
    grid-row: 1/3;
    color: black;
}
.div4
{
	background: white;
	grid-column: 1/2;
    grid-row: 2/3;
    color: black;
}
.div5
{
	background: #18202D;
	grid-column: 2/4;
    grid-row: 2/3;
}
.userdetails
{
	display: flex;
}
.imgbox
{
	margin-right: 1rem;
}
.imgbox img
{
	border-radius: 50%;
	width: 2rem;
	border: 2px solid #cec5c5;
}
.detbox
{
	display: flex;
    flex-direction: column;
    justify-content: center;
}
.detbox p
{
	margin: 0;
}
.detbox .name
{
	color: hsl(0, 0%, 81%);
    font-size: 0.9rem;
    margin-bottom: 0.1rem;
    font-weight: 600;
}
.detbox .name.dark
{
	color: #49505A;
}
.detbox .designation
{
	color: hsl(0, 0%, 81%);
    opacity: 50%;
    font-size: 0.8rem;
}
.detbox .designation.dark
{
	color: #49505A;
}
.review h4
{
	font-size: 1.4rem;
	color: #F3DEFF;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 0.8rem;
}
.review.dark h4{
	color:#4B5258;
}
.review p
{
	font-size: 0.95rem;
    color: #F3DEFF;
    font-weight: 500;
    opacity: 50%;
    line-height: 1.5;
}
.review.dark p{
	color: #0e0e0e;
}
.attribution
{
	font-size: 1rem;
    line-height: 1.5;
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    text-align: right;
}
.attribution a
{
	text-decoration: none;
}

@media only screen and (max-width: 1000px)
{
	.innerdiv
	{
		transform: scale(0.7);
	}
}
@media only screen and (max-width: 800px)
{
	.innerdiv
	{
		transform: scale(0.6);
	}
}
@media only screen and (max-width: 600px)
{
	.div1 {
		background-position-x: 10rem;
	}
	.innerdiv
	{
		display: flex; 
		flex-direction: column;
		transform: scale(1);
		margin: 2rem;
		margin-bottom: 5rem;
	}
	.attribution
	{
		position: relative;
	}
}

/* Testmonial Section ends here  */

/* newsletter starts from here */

.newsletter-container {
     width:100%;
      padding: 40px;
      margin: 0 auto;
      border-radius: 30px 30px 0px 0px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      /* text-align: center; */
      background-color: #DE5B7B;
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
      margin-top: 50px;
    }

    .newsletter-title {
      font-size: 2rem;
      font-weight: 800;
    }

    .newsletter-title span {
      color: #E0F9B5;
    }

    form {
      margin-top: 30px;
    }

    label {
      display: block;
      margin-bottom: 10px;
      font-size: 15px;
      font-weight: 500;
    }

    input[type="email"] {
      width: 50%;
      padding: 10px;
      border: none;
      border-bottom: 2px solid #E0F9B5;
      background-color: transparent;
      color: white;
      font-size: 16px;
      outline: none;
    }

    .checkbox-wrapper {
      margin: 20px 0;
      display: flex;
      align-items: center;
    }

    .checkbox-wrapper input[type="checkbox"] {
      accent-color:#E0F9B5 ;
      margin-right: 10px;
    }

    .rating-stars {
      display: flex;
      gap: 15px;
      margin-bottom: 30px;
    }

    .star {
      font-size: 30px;
      color: #E0F9B5;
      cursor: pointer;
      transition: transform 0.2s;
    }

    .star:hover,
    .star.active {
      transform: scale(1.2);
    }

    /* Button 86 styling */
    .button-866 {
      all: unset;
      width: 120px;
      height: 40px;
      font-size: 16px;
      background: transparent;
      border: none;
      position: relative;
      color: #000000;
      cursor: pointer;
      z-index: 1;
      padding: 10px 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      white-space: nowrap;
      user-select: none;
      -webkit-user-select: none;
      touch-action: manipulation;
    }

    .button-866::after,
    .button-866::before {
      content: '';
      position: absolute;
      bottom: 0;
      right: 0;
      z-index: -99999;
      transition: all .4s;
    }

    .button-866::before {
      transform: translate(0%, 0%);
      width: 100%;
      height: 100%;
      background: #E0F9B5;
      border-radius: 10px;
    }

    .button-866::after {
      transform: translate(10px, 10px);
      width: 35px;
      height: 35px;
      background: #de5b7c8e;
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(5px);
      border-radius: 50px;
    }

    .button-866:hover::before {
      transform: translate(5%, 20%);
      width: 110%;
      height: 110%;
    }

    .button-866:hover::after {
      border-radius: 10px;
      transform: translate(0, 0);
      width: 100%;
      height: 100%;
    }

    .button-866:active::after {
      transition: 0s;
      transform: translate(0, 5%);
    }
    

/* newsletter ends here */